home *** CD-ROM | disk | FTP | other *** search
/ Software USA 4 #11 / Software USA Volume 4.11.iso / mac / Educational / mac06 / usr / include / stdarg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-11-19  |  256 b   |  14 lines  |  [TEXT/SPM ]

  1. /* mac06©1997 by HNS/DSITRI hns@computer.org
  2. ** stdarg.h
  3. */
  4.  
  5. #pragma once
  6.  
  7. /* valid for PowerPC calling conventions */
  8.  
  9. #define va_arg(p, type)            *(*(type **)&(p))++
  10. #define va_end(p)
  11. #define va_list void *
  12. #define va_start(p, arg)        p=(&(arg))+1
  13.  
  14. /* EOF */